home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / timesink_detection.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  69 lines

  1. #
  2. # Copyright (C) 2004 Tenable Network Security 
  3. #
  4. #
  5.  
  6. if(description)
  7. {
  8.  script_id(12003);
  9.  
  10.  script_version("$Revision: 1.3 $");
  11.  
  12.  name["english"] = "TIMESINK detection";
  13.  
  14.  script_name(english:name["english"]);
  15.  
  16.  desc["english"] = "
  17. The remote host is using the TIMESINK program.  
  18. You should ensure that:
  19. - the user intended to install TIMESINK (it is sometimes silently installed)
  20. - the use of TIMESINK matches your corporate mandates and security policies.
  21.  
  22. To remove this sort of software, you may wish to check out ad-aware or spybot. 
  23.  
  24. See also : http://www.safersite.com/PestInfo/t/timesink.asp 
  25.  
  26. Solution : Uninstall this software
  27. Risk factor : High";
  28.  
  29.  
  30.  
  31.  script_description(english:desc["english"]);
  32.  
  33.  summary["english"] = "TIMESINK detection";
  34.  
  35.  script_summary(english:summary["english"]);
  36.  
  37.  script_category(ACT_GATHER_INFO);
  38.  
  39.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  40.  family["english"] = "Windows";
  41.  script_family(english:family["english"]);
  42.  
  43.  script_dependencies("smb_registry_full_access.nasl");
  44.  script_require_keys("SMB/registry_full_access");
  45.  
  46.  script_require_ports(139, 445);
  47.  exit(0);
  48. }
  49.  
  50.  
  51. # start the script
  52.  
  53. if ( ! get_kb_item("SMB/registry_full_access") ) exit(0);
  54.  
  55. path[0] = "software\conducent";
  56. path[1] = "software\microsoft\windows\currentversion\uninstall\flexpak";
  57. path[2] = "software\timesink  inc.";
  58.  
  59.  
  60.  
  61. include("smb_nt.inc");
  62.  
  63. for (i=0; path[i]; i++) {
  64.        val = registry_key_exists(key:path[i]);
  65.        if(val != NULL) {security_hole(kb_smb_transport()); exit(0); } 
  66. }
  67.  
  68.  
  69.